home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / misc / evenmore / rexx / evenlha.rexx next >
OS/2 REXX Batch file  |  1999-04-28  |  241b  |  13 lines

  1. /* View lha archives with EvenMore */
  2.  
  3. parse arg filename
  4.  
  5. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  6.  
  7. address command 'c:lha v 'filename' >ram:lhaview'
  8.  
  9. address 'EvenMore.1'
  10. "OPEN ram:lhaview"
  11.  
  12. exit
  13.